Add an SVG favicon for the landing page#24
Merged
Merged
Conversation
The menu bar uses an SF Symbol, which can't be reused on the web (Apple licenses SF Symbols for in-app UI only), so add a license-safe lowercase-r monogram favicon in the brand green. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01UxW88oRt7fVbTyT8rsHDYi
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01UxW88oRt7fVbTyT8rsHDYi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds an SVG favicon to the landing page.
The menu bar icon is the SF Symbol
person.and.background.striped.horizontal, which can't be reused on the web — Apple licenses SF Symbols for in-app UI only (not as logos/favicons), and the detailed glyph wouldn't read at 16–32px anyway. There's no standalone app-icon asset in the repo either.So this adds a license-safe lowercase-
rmonogram in the brand green (#4ade80), consistent with thereevewordmark and crisp at favicon sizes. Easy to swap for a real app icon later (which could then be shared by both the.appand the site).Changes
site/favicon.svg— the monogramsite/index.html—<link rel="icon" type="image/svg+xml" href="favicon.svg" />Note
SVG favicons cover modern browsers. A PNG/ICO +
apple-touch-iconfallback (for Safari/older) can be generated on a Mac and added later if you want fuller coverage — not required.🤖 Generated with Claude Code
Generated by Claude Code
Summary by cubic
Add a license-safe SVG favicon to the landing page: a white lowercase “r” monogram centered on a grey tile, crisp at small sizes. Adds favicon.svg and links it as the site icon in index.html.
Written for commit c684673. Summary will update on new commits.